home *** CD-ROM | disk | FTP | other *** search
/ Mac-Source 1994 July / Mac-Source_July_1994.iso / C and C++ / Text⁄Files / PStrings Folder / Pstr.h < prev   
Encoding:
C/C++ Source or Header  |  1987-10-24  |  687 b   |  22 lines  |  [TEXT/KAHL]

  1. /*
  2. **    Header file for pascal string, C string, and formatting utility routines
  3. **
  4. **    Written by Alan B. Mimms, 22 Oct, 1987
  5. **
  6. **    Permission is hereby granted to freely duplicate, modify, disseminate,
  7. **    and otherwise distribute this software until your heart's content.
  8. **    No copyright is claimed.  However, I am not responsible for the
  9. **    performance of this software and may not be held accountable for
  10. **    any failure of the software to perform in any way under any circum-
  11. **    stances.
  12. */
  13.  
  14. typedef unsigned char uchar;
  15. typedef uchar numbuf [34];
  16.  
  17. extern int pstrcmp ();
  18. extern uchar *pstrcpy (), *pstrcat ();
  19. extern uchar *cpyc2p ();
  20. extern uchar *cpyp2c ();
  21. extern uchar *numfmt ();
  22.